home *** CD-ROM | disk | FTP | other *** search
- ; PSPad clip definition file for Visual Basic .NET
- ; author: Willem Bogaerts
- ; last revision 23. Feb 2006
- ;
- [Boolean | Boolean data type]
- Boolean|
- [ByRef | ByRef]
- ByRef º As |
- [Byte | Byte data type]
- Byte|
- [ByVal | ByVal]
- ByVal º As |
- [Class | Class]
- Class º()
- |
- End Class
- [Const | Define a Constant]
- Const º As | =
- [CType | General conversion]
- CType(º, |)
- [CVS Header | CVS Keywords Header]
- ' $Revision: $
- ' $Date: $
- ' $Author: $
-
- [Date | Date data type]
- Date|
- [Decimal | Decimal data type]
- Decimal|
- [Dim | Dim]
- Dim º As |
- [Double | Double data type]
- Double|
- [Else | Else block for existing If]
- Else
- º|
- [Friend | Only visible within package]
- Friend º|
- [Function | Function]
- Function º()
- |
- End Function
- [If | If block]
- If º Then
- |
- End If
- [If Else| If block with else clause]
- If º Then
- |
- Else
-
- End If
- [Inherits | Inherits]
- Inherits º|
- [Integer | Integer data type]
- Integer|
- [Long | Long data type]
- Long|
- [Me | Reference to the current object]
- Me.º|
- [Namespace | Namespace]
- Namespace º()
- |
- End Namespace
- [Private | Only visible within class/instance]
- Private º|
- [Protected | Only visible within class/instance and subclasses]
- Protected º|
- [Protected Friend | Only visible within package and subclasses]
- Protected Friend º|
- [Public | Visible everywhere]
- Public º|
- [ReadOnly Property | ReadOnly Property]
- ReadOnly Property º() As |
- Get
-
- Return
- End Get
- End Property
- [Return | Return]
- Return º|
- [Short | Short data type]
- Short|
- [Single | Single data type]
- Single|
- [String | String data type]
- String|
- [Sub | Sub]
- Sub º()
- |
- End Sub
- [ToDo | ToDo comment to search on]*CTRL+ALT+SHIFT+T
- ' ToDo [%UserName%]: º|
- [Throw exception | Throw exception]
- Throw New º(|)
- [With | With block]
- With º
- |
- End With
- ;
- ;
- [AndAlso | Lazy and]
- AndAlso |º